home *** CD-ROM | disk | FTP | other *** search
- #import <appkit/appkit.h>
-
- #import "PAThumbWheelCell.h"
-
- @interface WWThumbWheelCell:PAThumbWheelCell
- {
- id interp;
-
- id visibleMinText;
- id visibleMaxText;
-
- id absoluteMinText;
- id absoluteMaxText;
-
- id valText;
- id relativeValText;
-
- char *controlString;
- int controlStringSize;
- char *sprintfControlString;
-
- char *tclExpression;
- int tclExpressionSize;
- char *tclVar;
- int tclVarSize;
- char *tclCommand;
- int tclCommandSize;
- BOOL tclCommandDirty;
- }
-
- - init;
- - awake;
- - write:(NXTypedStream *)stream;
- - read:(NXTypedStream *)stream;
-
- - setControlString:(const char *)str;
- - (const char *)controlString;
- - setTclExpression:(const char *)str;
- - (const char *)tclExpression;
- - setTclVar:(const char *)varName;
- - (const char *)tclVar;
- - setTclCommand:(const char *)str;
- - (const char *)tclCommand;
-
- - updateInterp;
-
- @end
-